home *** CD-ROM | disk | FTP | other *** search
/ LG Super CD / LG Super CD.iso / bitpim / bitpim-0.62-setup.exe / {app} / bitpim.exe / Scripts.py2exe / __main__.py next >
Encoding:
Python Source  |  2003-08-22  |  562 b   |  27 lines

  1. #!/usr/bin/env python
  2.  
  3.  
  4. ### BITPIM
  5. ###
  6. ### Copyright (C) 2003 Roger Binns <rogerb@rogerbinns.com>
  7. ###
  8. ### This software is under the Artistic license.
  9. ### http://www.opensource.org/licenses/artistic-license.php
  10. ###
  11. ### $Id: bp.py,v 1.4 2003/08/22 10:51:02 rogerb Exp $
  12.  
  13. """Main entry point to Bitpim
  14.  
  15. It invokes BitPim in gui or commandline mode as appropriate
  16.  
  17. @Note: Only gui mode is supported at the moment
  18. """
  19.  
  20. # only gui mode support at the moment
  21.  
  22. if __name__ == '__main__':
  23.     import sys  
  24.     import gui
  25.  
  26.     gui.run(sys.argv)
  27.